home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
comms
/
internet
/
html-related
/
hsc
/
source
/
hsclib
/
defattr.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-19
|
668b
|
28 lines
/*
** defattr.h
**
** functions to define new attribute
** and manipulate attribute lists
**
*/
#ifndef HSCLIB_DEFATTR_H
#define HSCLIB_DEFATTR_H
/*
** global funcs
*/
#ifndef NOEXTERN_HSCLIB_DEFATTR
/* attribute list manipulation */
extern BOOL copy_local_varlist( DLLIST *destlist, DLLIST *varlist, ULONG mci );
extern BOOL set_local_varlist( DLLIST *destlist, DLLIST *varlist, ULONG mci );
extern VOID remove_local_varlist( DLLIST *varlist, ULONG mci );
extern BOOL check_varlist( HSCPRC *hp, DLLIST *varlist );
extern HSCVAR *define_var( HSCPRC *hp, DLLIST *varlist, ULONG unmasked_flags );
#endif /* NOEXTERN_HSCLIB_DEFATTR */
#endif /* HSCLIB_DEFATTR_H */